projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
20583d0
)
ARM: arm720t: Add missing CONFIG_SKIP_LOWLEVEL_INIT guard for cpu_init_crit
author
Axel Lin
<
[email protected]
>
Tue, 21 May 2013 13:44:10 +0000
(13:44 +0000)
committer
Tom Warren
<
[email protected]
>
Tue, 28 May 2013 19:58:43 +0000
(12:58 -0700)
cpu_init_crit() can be skipped, but the code is still enabled requiring a
platform to supply lowlevel_init().
Signed-off-by: Axel Lin <
[email protected]
>
Tested-by: Stephen Warren <
[email protected]
>
Signed-off-by: Tom Warren <
[email protected]
>
arch/arm/cpu/arm720t/start.S
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/arm720t/start.S
b/arch/arm/cpu/arm720t/start.S
index 9facc7e69481db7aabc7286b4d7131bb2ad04bd8..9f0e3f961a3dc4283a02535996918942e60c4884 100644
(file)
--- a/
arch/arm/cpu/arm720t/start.S
+++ b/
arch/arm/cpu/arm720t/start.S
@@
-244,6
+244,7
@@
c_runtime_cpu_setup:
*************************************************************************
*/
+#ifndef CONFIG_SKIP_LOWLEVEL_INIT
cpu_init_crit:
#if !defined(CONFIG_TEGRA)
@@
-258,6
+259,7
@@
cpu_init_crit:
#endif
mov pc, lr
+#endif /* CONFIG_SKIP_LOWLEVEL_INIT */
#ifndef CONFIG_SPL_BUILD